home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Aminet 2
/
Aminet AMIGA CDROM (1994)(Walnut Creek)[Feb 1994][W.O. 44790-1].iso
/
Aminet
/
util
/
dir
/
megad31b.lha
/
rexx
/
makeLikeFiles.rexx
< prev
next >
Wrap
OS/2 REXX Batch file
|
1993-05-02
|
539b
|
20 lines
/* simply create like files in T: directory to test RenameOther.rexx */
/* if run from MegaD change address to REXX to prevent return values
from being used as ARexx commands to MegaD
*/
ADDRESS REXX
name = 'T:likeFile'
number = 1
do 20
filename = name || RIGHT(number,2,'0')
SAY filename
OPEN('file',filename,'w');
WRITELN('file',number)
CLOSE('file')
/* un-comment if you want to test with a phony .info file for each file */
/* ADDRESS COMMAND COPY 'sys:system/shell.info' to filename || '.info' */
number = number + 1
end